home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
printing
/
iprint
/
msgform.fr_
/
msgform.fr
Wrap
Text File
|
1994-08-03
|
1KB
|
51 lines
VERSION 2.00
Begin Form MsgForm
BorderStyle = 3 'Fixed Double
ClientHeight = 765
ClientLeft = 2505
ClientTop = 2655
ClientWidth = 4185
ClipControls = 0 'False
ControlBox = 0 'False
Height = 1170
Left = 2445
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 765
ScaleWidth = 4185
Top = 2310
Width = 4305
Begin Timer BorderTimer
Interval = 300
Left = 180
Top = 120
End
Begin Shape LabelBorder
Height = 315
Left = 720
Top = 180
Width = 2715
End
Begin Label MessageLabel
AutoSize = -1 'True
Caption = "Loading Fonts. Please Wait..."
Height = 195
Left = 780
TabIndex = 0
Top = 240
Width = 2595
End
End
Option Explicit
Sub BorderTimer_Timer ()
'Flash a box around the label while waiting for fonts to load.
If LabelBorder.Visible = True Then
LabelBorder.Visible = False
Else
LabelBorder.Visible = True
End If
End Sub